home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr28 / cspat1.zip / RUNME.BAT < prev   
DOS Batch File  |  1995-01-20  |  2KB  |  35 lines

  1. echo off
  2. echo ╔═════════════════════════════════════════════════════════════╗
  3. echo ║      Cleansweep patch for version 1.00 dated 11/08/94       ║
  4. echo ║                                                             ║
  5. echo ║ This patchfile implements fixes to Cleansweep version 1.00. ║
  6. echo ║ This patch will work ONLY on Cleansweep version 1.00. The   ║
  7. echo ║ date on the CLNSWEEP.EXE file in your CLNSWEEP directory    ║
  8. echo ║ should be 11/08/94. If the date on these files is later     ║
  9. echo ║ than 11/08/94, you do not need this patch.                  ║
  10. echo ║                                                             ║
  11. echo ║ Press any key to continue or Control-C to abort.            ║
  12. echo ╚═════════════════════════════════════════════════════════════╝
  13. pause
  14. if not exist PATCH.EX_ goto error
  15. if not exist files.RTP goto error
  16. if not exist CLNSWEEP.EXE goto error
  17. copy PATCH.EX_ PATCH.EXE
  18. if not exist PATCH.EXE goto error
  19. patch files.rtp /ignoremissing
  20. echo Patch complete! Now deleting patch files...
  21. del patch.exe
  22. del files.rtp
  23. echo Patch successfully applied; patch files deleted.
  24. goto end
  25. :error
  26. echo ╔═════════════════════════════════════════════════════════════╗
  27. echo ║ This patch should be applied by copying PATCH.EX_,          ║
  28. echo ║ files.rtp, cln1.pat, and runme.bat into your CLNSWEEP       ║
  29. echo ║ directory then typing:                                      ║
  30. echo ║                                                             ║
  31. echo ║ runme                                                       ║
  32. echo ║                                                             ║
  33. echo ╚═════════════════════════════════════════════════════════════╝
  34. :end
  35.